HTMLify
index.html
Views: 443 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Simple Form Validation</title> <link rel="shortcut icon" href="assets/favicon.png" type="image/x-icon" /> <link rel="stylesheet" href="styles.css" type="text/css"> </head> <body> <div class="container"> <form id="signup_form" class="form"> <h1>Simple Form Validation</h1> <div class="form-field"> <label for="username">Username:</label> <input type="text" name="username" id="username_input" autocomplete="off"> <small></small> </div> <div class="form-field"> <label for="email">Email:</label> <input type="text" name="email" id="email_input" autocomplete="off"> <small></small> </div> <div class="form-field"> <label for="password">Password:</label> <input type="password" name="password" id="password_input" autocomplete="off"> <small></small> </div> <div class="form-field"> <label for="confirm-password">Confirm Password:</label> <input type="password" name="confirm-password" id="confirm_password_input" autocomplete="off"> <small></small> </div> <div class="form-field"> <input type="submit" value="Sign Up" class="submit-btn"> </div> </form> </div> <footer> <p> By <a target="_blank" href="https://github.com/alexventuraio">Alex Ventura</a> </p> </footer> <script src="app.js"></script> </body> </html> |